home *** CD-ROM | disk | FTP | other *** search
- /*
- text.c
-
- グラフィック画面とテキスト画面を合成するためのライブラリ
- */
-
- #include <stdio.h>
- #include <conio.h>
- #include <fmcfrb.h>
- #include <ryosuke.h>
- #include <usrlib.h>
-
- void text_init(void) // ページ1をテキスト画面に設定する
- {
- VDB_init();
- VDB_kind(0);
- VDB_cls();
- VDB_ATR atr;
- atr.charatr = 0;
- atr.dispatr = 0x20;
- atr.color = 7;
- VDB_setdefatr(&atr);
- }
-
- void text_end(void)
- {
- VDB_ATR atr;
- atr.charatr = 0;
- atr.dispatr = 0;
- atr.color = 7;
- VDB_setdefatr(&atr);
- }
-
- /* end of text.c */
-